home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue38
/
BuildPro
/
COMMON FORMS
/
AboutMyProduct.pas
< prev
Wrap
Pascal/Delphi Source File
|
1998-04-21
|
729b
|
43 lines
unit AboutMyProduct;
interface
uses Windows, Classes, Graphics, Forms, Controls, StdCtrls,
Buttons, ExtCtrls;
type
TAboutBox = class(TForm)
Panel1: TPanel;
OKButton: TButton;
ProgramIcon: TImage;
ProductName: TLabel;
Version: TLabel;
Copyright: TLabel;
Comments: TLabel;
lblDebug: TLabel;
lblAssertions: TLabel;
procedure FormShow(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
AboutBox: TAboutBox;
implementation
{$R *.DFM}
uses Debug;
procedure TAboutBox.FormShow(Sender: TObject);
begin
lblDebug.Visible := DebugOn;
lblAssertions.Visible := AssertionsOn;
end;
end.